home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 24
/
Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso
/
Aminet
/
dev
/
mui
/
mui38dev_bb2.lha
/
EFMUILib
/
Examples
/
EFShowHide.asc
< prev
Wrap
Text File
|
1998-02-03
|
2KB
|
68 lines
;ShowHide example
;(c)1992/93, Stefan Stuntz
;Blitz basic 2 version (c)1997/98 by VIVID Imagination
WBStartup
MUIApplicationTitle "ShowHide"
MUIApplicationVersion "$VER: ShowHide 19.5 (12.02.97)"
MUIApplicationCopyright "(c)1992/93, Stefan Stuntz"
MUIApplicationAuthor "Stefan Stuntz"
MUIApplicationDescription "Show object hiding."
MUIApplicationBase "SHOWHIDE"
MUICheckMark 1,1
MUICheckMark 2,1
MUICheckMark 3,1
MUICheckMark 4,1
MUICheckMark 5,1
MUIAddObjsHGroup 0,1,2,3,4,5
MUIAddTags 0,#MUIA_Weight,0
MUICreateHGroup 0
MUISimpleButton 11,"Button 1"
MUISimpleButton 12,"Button 2"
MUISimpleButton 13,"Button 3"
MUISimpleButton 14,"Button 4"
MUISimpleButton 15,"Button 5"
MUIVSpace 16,0
MUIAddObjsVGroup 10,11,12,13,14,15,16
MUICreateVGroup 10
MUIAddObjsVGroup 6,0,10
MUIAddTags 6,#MUIA_Frame,#MUIV_Frame_Group
MUICreateVGroup 6
MUIAddObjHGroup 7,6
MUICreateHGroup 7
MUICreateWindow 8,"Show & Hide","SHHD",7
MUIAddSubWindow 8
If MUICreateApplication<>True
End
EndIf
MUINotifyApp 8,#MUIA_Window_CloseRequest,1,#MUIV_Application_ReturnID_Quit
MUINotify 1,#MUIA_Selected,#MUIV_EveryTime,11,#MUIM_Set,#MUIA_ShowMe,#MUIV_TriggerValue
MUINotify 2,#MUIA_Selected,#MUIV_EveryTime,12,#MUIM_Set,#MUIA_ShowMe,#MUIV_TriggerValue
MUINotify 3,#MUIA_Selected,#MUIV_EveryTime,13,#MUIM_Set,#MUIA_ShowMe,#MUIV_TriggerValue
MUINotify 4,#MUIA_Selected,#MUIV_EveryTime,14,#MUIM_Set,#MUIA_ShowMe,#MUIV_TriggerValue
MUINotify 5,#MUIA_Selected,#MUIV_EveryTime,15,#MUIM_Set,#MUIA_ShowMe,#MUIV_TriggerValue
MUISet 3,#MUIA_Selected,False
MUIOpenWindow 8
Repeat
ev.l=MUIWaitEvent
Until ev=#MUIV_Application_ReturnID_Quit
MUICloseWindow 8
End